Seedling

class Seedling @JvmOverloads constructor(printStreamErr: PrintStream = System.err, printStreamOut: PrintStream = System.out, callStackIndex: Int = CALL_STACK_INDEX) : ISeedling

Basic logger that prints Error and WTF messages to the System.err stream. All other logs are printed to the System.out stream. Messages are line printed in the format of TAG: Message.

Arbor.sow(Seedling())

Constructors

Link copied to clipboard
constructor(printStreamErr: PrintStream = System.err, printStreamOut: PrintStream = System.out, callStackIndex: Int = CALL_STACK_INDEX)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val tag: String

A static or dynamically generated tag for logging.

Functions

Link copied to clipboard
open fun log(level: Int, tag: String, msg: () -> String, throwable: Throwable? = null)
open override fun log(level: Int, tag: String, msg: String, throwable: Throwable?, args: Array<out Any?>?)

A request to perform logging.